home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Folder Comments.xpl < prev    next >
Text File  |  2001-08-04  |  2KB  |  57 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="4"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Files&Folders\Folders"
  5. "NAME"="Folder Comments"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.08"
  8. "OSVERSION"="0001011"
  9. "TEXT 1"="Folder:"
  10. "DESCRIPTION 1"="If you have activated the "Details" view inside Explorer, you can see all details of a file or folder."
  11. "DESCRIPTION 2"="By right-clicking on one of the column titles in Explorer, you can bring up a list of more items to be displayed."
  12. "DESCRIPTION 3"="In this window, you'll find a button titled "More" that can be used to show the "Comment" field which is very useful."
  13. "DESCRIPTION 4"=" "
  14. "DESCRIPTION 5"="Normally, a folder can not have a comment, but with this plug-in you can add one: just select the folder you want to comment, then press "Apply"."
  15. "DESCRIPTION 6"="NOTE: If you are viewing this folder inside Explorer while using this plug-ins, you need to press F5 to refresh the display."
  16. "AUTHOR"="Xteq Systems"
  17. "CONTACTURL"="http://www.xteq.com"
  18. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  19. "COMMENT 1"="Thanks to CptSiskoX, Pierre and Ojatex for their help!"
  20.  
  21.  
  22.  
  23. sFile="desktop.ini"
  24. sSec=".ShellClassInfo"
  25. sValName="InfoTip"
  26.  
  27. Sub Plugin_Initialize 
  28. End Sub
  29.  
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34.  
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  sPath=GetUIElement(1)
  38.  if right(sPath,1)<>"\" then
  39.     sPath=sPath & "\"
  40.  end if
  41.  
  42.  sValue=IniReadValue(sPath & sFile,sSec,sValName)
  43.  
  44.  sComment=InputWindow("Comment for '" & sPath & "'",sValue,1)
  45.  if IsEmpty(sComment)=false then
  46.     Call IniWriteValue(sPath & sFile,sSec,sValName,sComment)
  47.     Call MsgInformation("Comment for folder '" & sPath & "' set to '" & sComment & "'")
  48.  end if
  49. End Sub
  50.  
  51.  
  52. Sub Plugin_Terminate 
  53. End Sub
  54.  
  55.  
  56.  
  57.